VintaSoft Imaging .NET SDK 14.0: Documentation for .NET developer
Vintasoft.Imaging.Drawing Namespace / GraphicsPathData Class / GraphicsPathData Constructors / GraphicsPathData Constructor(PointF[],GraphicsPathPointType[])
Syntax Requirements SeeAlso
In This Topic
    GraphicsPathData Constructor(PointF[],GraphicsPathPointType[])
    In This Topic
    Initializes a new instance of the GraphicsPathData class.
    Syntax
    'Declaration
    
    Public Function New( _
    ByVal points
    The path points.
    () As System.Drawing.PointF, _
    ByVal pointTypes
    The types of path points.
    () As GraphicsPathPointType _
    )
    public GraphicsPathData(
    System.Drawing.PointF[] points,
    GraphicsPathPointType[] pointTypes
    )
    public: GraphicsPathData(
    System.Drawing.PointF[]* points,
    GraphicsPathPointType[]* pointTypes
    )
    public:
    GraphicsPathData(
    array<System.Drawing.PointF>^ points,
    array<GraphicsPathPointType>^ pointTypes
    )

    Parameters

    points
    The path points.
    pointTypes
    The types of path points.
    Requirements

    Target Platforms: .NET9; .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

    See Also